Structures
Initialisation     Test yourself
Rectangle: Click to edit Master text styles
Second level
Third level
Fourth level
Fifth level
struct {
   char name[11];
      float StudentID;
} student = {“Smith”, 6};
5FA60
5FA72
NOTE: “Smith” takes 10 bytes.
The structure is similar to that of an array in that a single
contiguous memory block is allocated for a structure
variable, with the size of the  block being large enough to
hold the values of all structure components.